home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / pbtool2d.arc / NEW.DOC < prev    next >
Text File  |  1990-10-29  |  1KB  |  28 lines

  1. I will not place all new command in this file instead of inserting them into
  2. the regular documentation.  When all the routines are finished (if ever)
  3. I will then fix the documentation.
  4.  
  5. -------------------------------------------------------------------------------
  6.      GetDir2 - SUB-ROUTINE - DOSIO.PBU
  7. -------------------------------------------------------------------------------
  8. Works just like GetDir$ by placing the directory of a given path in a
  9. specified array.  The difference is that the file size and date are
  10. placed into the string.  Note: The array is sorted in filename order.
  11.  
  12. Example:  CALL GetDir2$(Path$, Atr%, FilArr$())
  13.  
  14. See GetDir$ for a better explanation.
  15. -------------------------------------------------------------------------------
  16.      SizeDir - FUNCTION - DOSIO.PBU
  17. -------------------------------------------------------------------------------
  18. Returns the number of bytes of all files in a path.
  19.  
  20. Example:  PRINT "Current directory uses";SizeDir&(Path$,Atr%);"bytes."
  21. -------------------------------------------------------------------------------
  22.      SortDirExt - SUB-ROUTINE - DOSIO.PBU
  23. -------------------------------------------------------------------------------
  24. Sorts an array from GetDir or GetDir2 by extension then subsorts by name.
  25.  
  26. Example:  CALL SortDirExt(FilArr$())
  27. -------------------------------------------------------------------------------
  28.